home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / fberror.sql < prev    next >
Text File  |  2000-05-12  |  871b  |  21 lines

  1. /* RCSVER $Id: fberror.sql,v 1.2 1999-03-07 19:47:56-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        fberror.sql  
  6. * Date:        02/23/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the fberror table. Fberror contains information       
  9. *        from the farebox error record.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE fberror  
  13. (
  14.     det_seq_num    NUMBER(38)    /* pointer to mstrrec record */
  15.         CONSTRAINT ref1_fberror REFERENCES mstrrec(det_seq_num),
  16.     farebox_glid    NUMBER(38),    /* Farebox ID from global_id */
  17.         conv_date       DATE,           /* Date for this record */
  18.     err_string    VARCHAR2(300),    /* Sepcific error */
  19.     CONSTRAINT pk_fberror PRIMARY KEY (det_seq_num)
  20. );
  21.